var allDivs = document.body.getElementsByTagName("DIV");
var allImages = document.body.getElementsByTagName("IMG");
var fExpanded = false;
var imgShowAll = allImages["picHeader"];
function openWindow(url, example) {
var popupWin;
if (typeof(popupWin) != "object")
popupWin = window.open(url, example, "width=452,height=572,top=0,left=0,alwaysRaised=yes,toolbar=0,directories=0,menubar=0,status=1,resizable=yes,location=0,scrollbars=1,copyhistory=0");
else {
if (!popupWin.closed)
popupWin.location.href = url;
else
popupWin = window.open(url, example, "width=452,height=572,top=0,left=0,alwaysRaised=yes,toolbar=0,directories=0,menubar=0,status=1,resizable=yes,location=0,scrollbars=1,copyhistory=0");